home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1995 April / Internet Tools.iso / dos_win / winsock / maillist / 94-03.Z / 94-03 / text0004.txt < prev    next >
Encoding:
Text File  |  1994-03-30  |  5.5 KB  |  200 lines

  1.  
  2.     Hello all
  3.  
  4.     I would like to start discussion and hopefully and improvement 
  5. in news readers. I for one am quite tired of trying to get software 
  6. mentioned in some news article with a winsock ftp program. What I would
  7. like to see, and please feel free to comment, is a drag and drop from a
  8. news article onto an ftp program. Even a cut and paste would be better
  9. than my current method of writing everything down on those yellow
  10. stickies. I know I should be able to see site and file once and then type it
  11. in from memory but I can not. I realize that it may mean changing the way people
  12. write their news article but I do not think this is such a great
  13. problem. I will suggest one method of my own or we could use the method
  14. that is used in Mosaic
  15.  
  16.      my method:
  17.  
  18.     site:   ftp.somewhere.goto
  19.     path:   /some/directory/path
  20.     ascii:  an_ascii.file
  21.     binary: a_binary.file
  22.  
  23.     www URL method:
  24.  
  25.     file://ftp.somewhere.goto/some/directory/path/a_binary.file
  26.  
  27.  
  28.  
  29.     NOTE: even the idea of adding cut and paste to winsock
  30. newsreaders would be a great benfit as most of the time I do not want to
  31. save a whole news article but some section of it.
  32.  
  33.     Thank for your time
  34.  
  35.     Paul Hounsell
  36.     University of Joensuu, Finland
  37.     hounsell@cc.joensuu.fi
  38. From Jonsson2_Johann_S@iti.is Tue Mar  1 14:21:46 1994
  39. Received: from isgate.is by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  40.           id AA03352; Tue, 1 Mar 1994 09:22:19 -0500
  41. Received: from iti.is by isgate.is (5.65c/ISnet/14-10-91); Tue, 1 Mar 1994 14:22:11 GMT
  42. Received: from  
  43.     by iti.is (1.37.109.8/ISnet/11-02-92); Tue, 1 Mar 1994 14:22:18 GMT
  44. From: Jonsson2_Johann_S@iti.is
  45. X-Openmail-Hops: 1
  46. Date: Tue, 1 Mar 94 14:21:46 +0000
  47. Message-Id: <B5FA2289@MHS>
  48. Subject: FW: Connection timeout?
  49. To: winsock@sunsite.unc.edu
  50.  
  51.  
  52. ----------
  53. From: Johann S. Jonsson2
  54. To: winsock
  55. Subject: Connection timeout?
  56. Date: 17. February, 1994 16:20
  57.  
  58. Whats going on...?
  59.  
  60. After spending lots of hours to get winsock programs to work (Gopher, 
  61. Cello, Mosaic) I get conncetion timeout.
  62.  
  63. I'm running W4W 3.11, with standard Microsoft configuration connectet 
  64. to HP-lan (on HP 9000/817).
  65.  
  66. Also trying Trumpet winsock with winpkt, same there.
  67.  
  68. If I ping from my PC, I get no packet back (100% packet loss)
  69.  
  70. If I use Macintosh, who are connectet to the same server, using MacTCP, 
  71. and Ping from there or direct on the terminal, all is OK.
  72.  
  73. (I use Wnqvt/net for Winsock as terminal on the PC, and it's work fine)
  74.  
  75. any help on connection timeout?......
  76.  
  77.  
  78. Thanks
  79.  
  80. Johann S. Jonsson
  81. e-mail:  Johann@iti.is
  82.  
  83. .......................................................................
  84.  
  85. Item Subject: WINMAIL.DAT
  86. Could not convert UNKNOWN FILE-TYPE (1734) item to text.
  87. Will attempt to 'shar' item as file '000ak0d' at end of msg.
  88.  
  89.  
  90. # This is a shell archive.  Remove anything before this line,
  91. # then unpack it by saving it in a file and typing "sh file".
  92. #
  93. # Wrapped by HP OpenMail System <openmail@korpa> on Tue Mar  1 14:22:19 1994
  94. #
  95. # This archive contains:
  96. #    000ak0d    
  97. #
  98. # Error checking via wc(1) will be performed.
  99.  
  100. LANG=""; export LANG
  101. PATH=/bin:/usr/bin:$PATH; export PATH
  102.  
  103.  
  104. rm -f /tmp/uud$$
  105. (echo "begin 666 /tmp/uud$$\n#;VL*n#6%@x\n \nend" | uudecode) >/dev/null 2>&1
  106. if [ X"`cat /tmp/uud$$ 2>&1`" = Xok ]
  107. then
  108.     unpacker=uudecode
  109. else
  110.     echo Compiling unpacker for non-ascii files
  111.     pwd=`pwd`; cd /tmp
  112.     cat >unpack$$.c <<'EOF'
  113. #include <stdio.h>
  114. #define C (*p++ - ' ' & 077)
  115. main()
  116. {
  117.     int n;
  118.     char buf[128], *p, a,b;
  119.  
  120.     scanf("begin %o ", &n);
  121.     gets(buf);
  122.  
  123.     if (freopen(buf, "w", stdout) == NULL) {
  124.         perror(buf);
  125.         exit(1);
  126.     }
  127.  
  128.     while (gets(p=buf) && (n=C)) {
  129.         while (n>0) {
  130.             a = C;
  131.             if (n-- > 0) putchar(a << 2 | (b=C) >> 4);
  132.             if (n-- > 0) putchar(b << 4 | (a=C) >> 2);
  133.             if (n-- > 0) putchar(a << 6 | C);
  134.         }
  135.     }
  136.     exit(0);
  137. }
  138. EOF
  139.     cc -o unpack$$ unpack$$.c
  140.     rm unpack$$.c
  141.     cd $pwd
  142.     unpacker=/tmp/unpack$$
  143. fi
  144. rm -f /tmp/uud$$
  145.  
  146. echo x - 000ak0d '[non-ascii]'
  147. $unpacker <<'@eof'
  148. begin 660 000ak0d
  149. M>)\^(@   0N  0 B    ,FIT:#=I*# S-BEL9' H82ES;V,R+G!O<"YP<W4NX
  150. &961U -H*                                                    X
  151.                                                              X
  152. end
  153. @eof
  154. set `wc -lwc <000ak0d`
  155. if test $1$2$3 != 1151
  156. then
  157.     echo ERROR: wc results of 000ak0d are $* should be 1 1 51
  158. fi
  159.  
  160. chmod 660 000ak0d
  161.  
  162. rm -f /tmp/unpack$$
  163. exit 0
  164. From news@bigblue.oit.unc.edu Mon Feb 28 22:30:44 1994
  165. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  166.           id AA04057; Tue, 1 Mar 1994 09:27:46 -0500
  167. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  168.           id AA20283; Tue, 1 Mar 1994 09:15:24 -0500
  169. Received: from GATEWAY by bigblue with netnews
  170.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  171. To: winsock@sunsite.unc.edu
  172. Date: 28 Feb 1994 22:30:44 GMT
  173. From: m751804@hpc.citri.edu.au (Tim Kiddle)
  174. Message-Id: <2ktrak$qhp@etrog.se.citri.EDU.AU>
  175. Organization: RMIT CSE High Performance Computer Systems (CITRI)
  176. Sender: ses
  177. Subject: Problem with Xwin and xrn news reader
  178.  
  179.  
  180. Keywords: Xwin xwindemo xrn
  181.  
  182.  
  183. I am having a problem using xwin with the xrn news reader.
  184. In fact, I am having several problems.
  185. 1. When I point to a news item, to hihglight it and read it,
  186. I highlight the item below.  The point of the arrow does not
  187. quite point to where the action is.
  188. 2. The item I want is supposed to highlighted.  Instead, it is erased.
  189. 3. When I do select an item, it shows up with much of the text missing
  190. and I have to 'nudge' the border of the display, causing a rewrite
  191. of the screen, which then displays the text correctly.
  192. 4. (as I have just discovered) No text is displayed, when I try to 
  193. submit a news item so I cannot see what I have typed.
  194.  
  195. Hope someone can help
  196. Tim Kiddle
  197. email tmk@bom.gov.au
  198.  
  199.  
  200.